home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / daten / ispell / source / addons / xspell.shar / buffer.h < prev    next >
C/C++ Source or Header  |  1995-01-23  |  391b  |  24 lines

  1.  
  2. /*
  3.  * This is the structure of a file that is being spell-checked.
  4.  *
  5.  * Basically, all associated state is found here.
  6.  */
  7.  
  8. typedef struct {
  9.     char *    base;
  10.     char *    ptr;
  11.     long    offset;
  12.     int        cnt;
  13.     int        delta;
  14.     int        lineno;
  15.     int        topline;
  16.     int        wordlen;
  17.     long    size;
  18.     char    *filename;
  19.     char    *tempname;
  20. /* booleans */
  21.     char    changed;
  22.     char    readonly
  23. } buf_t;
  24.